internal/runtime/cgroup.lineReader.scratch (field)

10 uses

	internal/runtime/cgroup (current package)
		line_reader.go#L41: 	scratch []byte
		line_reader.go#L64: 		scratch: scratch,
		line_reader.go#L97: 			copy(r.scratch, r.scratch[r.newline+1:r.n])
		line_reader.go#L100: 			r.newline = bytealg.IndexByte(r.scratch[:r.n], '\n')
		line_reader.go#L116: 		n, errno := r.read(r.fd, r.scratch[r.n:len(r.scratch)])
		line_reader.go#L131: 		r.newline = bytealg.IndexByte(r.scratch[:r.n], '\n')
		line_reader.go#L175: 		return r.scratch[:r.n]
		line_reader.go#L178: 	return r.scratch[:r.newline]